home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr09 / fgrtodb.zip / PAF1.SED < prev    next >
Text File  |  1993-06-03  |  1KB  |  42 lines

  1. s/^----//               # remove the "----" 
  2. /^-/ d                  # remove all lines that begin with a "-"
  3. /^=/ d                  # remove all lines that begin with a "="
  4. s/-/:/g                 # substitute all remaining "-" with a ":"
  5. s/\.//g                 # remove all "."
  6. /Page/ d                # delete all lines that have the word "Page"
  7. /Yr of Birth/ d         # delete all lines that have "Yr of Birth"
  8. /Sex/ d                 # delete all lines that have "Sex"
  9. /^O/ d                  # delete data lines of husband and wife
  10. /^B/ d                  # i.e., other, born, chr, marr, died, bur, fath
  11. /^C/ d
  12. /^M/ d
  13. /^D/ d
  14. /^B/ d
  15. /^F/ d
  16. s/HUSBAND /HUSBAND:/    # place a colon after HUSBAND
  17. s/PLACE/:PLACE/         # place a colon before PLACE
  18. s/MOTHER/:MOTHER/       # place a colon before MOTHER
  19. s/WIFE /WIFE:/          # place a colon after WIFE
  20. s/PARENTS/:PARENTS/     # place a colon before PARENTS
  21. s/SPOUSE/:SPOUSE/       # etc
  22. s/MRIN/:MRIN/
  23. s/NAME/:NAME/
  24. s/*//g                  # remove "*"
  25. s/    / /g              # remove excess spaces
  26. s/   / /g
  27. s/  / /g
  28. s/^ //                  # remove space in first column
  29. s/^F /F:/
  30. s/^M /M:/
  31. s/: /:/g                # remove spaces before/after colons
  32. s/  :/:/g 
  33. s/ :/:/g 
  34. s/^  F/F/               # remove spaces in front of FAMILY
  35. s/^ //
  36. /Name/ d                # remove name and address of submitter
  37. /Stephen Valentine, IV/ d
  38. /8313/ d
  39. /Alexandria,/ d
  40.  
  41.  
  42.